From: Karl Heuer Date: Tue, 1 Feb 1994 23:21:22 +0000 (+0000) Subject: (Fmod): Use HAVE_FMOD. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~93331 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=d9f082eccae83275db39962ea7bbe958510fcb08;p=emacs.git (Fmod): Use HAVE_FMOD. --- diff --git a/src/data.c b/src/data.c index 4d25ed3cf5e..c325a38a0b2 100644 --- a/src/data.c +++ b/src/data.c @@ -1801,7 +1801,7 @@ Both X and Y must be numbers or markers.") if (f2 == 0) Fsignal (Qarith_error, Qnil); -#if defined (USG) || defined (sun) || defined (ultrix) || defined (hpux) || defined (MSDOS) +#ifdef HAVE_FMOD f1 = fmod (f1, f2); #else f1 = drem (f1, f2);